typeScript
-
[Leetcode] 9. Palindrome Number (Typescript)카테고리 없음 2023. 1. 24. 15:47
Given an integer x, return true if x is a palindrome , and false otherwise. Example 1: Input: x = 121 Output: true Explanation: 121 reads as 121 from left to right and from right to left. Example 2: Input: x = -121 Output: false Explanation: From left to right, it reads -121. From right to left, it becomes 121-. Therefore it is not a palindrome. Example 3: Input: x = 10 Output: false Explanation..
-
[Leetcode] 8. String To Integer(atoi) TypescriptAlgorithm 2023. 1. 24. 15:29
Implement the myAtoi(string s) function, which converts a string to a 32-bit signed integer (similar to C/C++'s atoi function). The algorithm for myAtoi(string s) is as follows: Read in and ignore any leading whitespace. Check if the next character (if not already at the end of the string) is '-' or '+'. Read this character in if it is either. This determines if the final result is negative or p..
-
[TypeScript] TypeScript란?JavaScript/TypeScript 2020. 7. 8. 17:24
Microsoft에서 개발해고 관리하는 오픈소스 프로그래밍 언어 Javascript에 정적 타입을 도입한 Javascript로 ES6를 지원 특징 1. ES6 모듈 및 네임스페이스 ES6에서 제공하는 모듈 선언과 모듈 호출 방식을 지원 클래스를 그룹으로 구분할 수 있는 네임스페이스를 지원하여 라이브러리 단위의 모듈 구성 가능 2. 클래스와 인터페이스 객체지향 프로그래밍 환경을 제공해서 Class, Interface, Extends 등의 객체지향 언어에서 사용하던 키워드를 사용할 수 있음 3. 타입 시스템 타입 시스템을 지원하여 타입 안정성을 제공