go

개발자의 삶/Algorithm

[LeetCode] Palindrome Number (with Go)

Given an integer x, return true if x is palindrome integer. An integer is a palindrome when it reads the same backward as forward. For example, 121 is a palindrome while 123 is not. Example 1: Input: x = 121 Output: true Explanation: 121 reads as 121 from left to right and from right to left. 뭔말인가 했다 palindrome 이 무슨 뜻인지 몰라서 검색을 해보려다가 예제를 보니 대충 주어지는 숫자(혹은 문자) 를 역순 정렬했을 때도 이전과 같은 것을 의미하는것 같다 ex, 1..

개발자의 삶/Algorithm

[LeetCode] Two Sum (with Go)

최근 Go 에 관심을 가지고 있습니다. 알고리즘 문제를 Java 혹은 Go로 풀어볼 생각입니다. LeetCode에서 기초적인 문제부터 풀어보았습니다. Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element twice. You can return the answer in any order. Example 1: Input: nums = [2,7,11,15], target..

Kedric
'go' 태그의 글 목록