일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- organizeImports
- pep8
- 글쓰기가필요하지않은인생은없다
- loadimpact
- springboot
- codewars
- conf
- typevar
- 조엘온소프트웨어
- GlobalInterprintLock
- maxlinelength
- pyenv
- Algorithm
- 코로나백신
- codewar
- ProxyServer
- opensouce
- 규칙없음
- Lint
- printer_helper
- restfulapi
- python
- httppretty
- 유닉스의탄생
- Golang
- goalng
- 독후감
- vscode
- flake8
- 오큘러스퀘스트2
- Today
- Total
목록codewar (13)
일상적 이야기들.
문제 - https://www.codewars.com/kata/54da5a58ea159efa38000836 불러오는 중입니다... 문제풀이 - 홀수번 나온 숫자를 구하는 문제로, 1차적인 생각으로는 나온 숫자를 Count해서 홀수인 값을 return 시키면 됩니다. - 그러나, 조금 더 나아가서 xor을 사용하게 되면 손쉽게 풀 수 있는 문제가 됩니다. - xor는 Bit연산으로 서로 다를 때 True로 전환이 되게 됩니다. 고로 동일한 값을 xor을 하게 되면 0의 값을 출력시키게 됩니다. - 그렇기에, 짝수번 나오게되는 숫자는 0으로 변경이 되게 되고 그렇지 않은 숫자는 남게 되는 것입니다. public class FindOdd { public static int findIt(int[] a) { in..
문제 - https://www.codewars.com/kata/5ce399e0047a45001c853c2b 문제풀이 - 주어진 배열을 순회하면서, 합을 구하는 구하는 문제입니다. - 0 번째는 0 ~ array.length 까지의 합. - 1 번째는 1 ~ array.length 까지의 합. - 쭉쭉쭉 array.length-1 번째는 array.length-1 ~ array.length까지의 합. - 이렇게 구하는데, 순차적으로 구하게 될 시에는 이중 for문을 사용하게 되므로, O(N^2)의 시간 복잡도가 됩니다. 그렇기에 이렇게 풀어서 제출을 하게 되면, Timeout 으로 fail이 나게 됩니다. - 뒤집어서 계산을 하여 넣게 된다면 for문 한번만 수행하게 되면 되므로, O(N)의 시간복잡도로 ..
문제 - https://www.codewars.com/kata/544675c6f971f7399a000e79 Codewars: Train your coding skills Codewars is where developers achieve code mastery through challenge. Train on kata in the dojo and reach your highest potential. www.codewars.com 문제풀이 - String으로 들어온 문자열을 Int형 변수로 변경하는 문제입니다. - Java에서 지원하는 Integer.parseInt( string형변수 ) 를 통해서 가능합니다. public class StringToNumber { public static int string..
문제 - https://www.codewars.com/kata/where-is-thb Codewars: Train your coding skills Codewars is where developers achieve code mastery through challenge. Train on kata in the dojo and reach your highest potential. www.codewars.com 문제 풀이 - input값으로 들어오는 문자열에서 't', 'h', 'b'를 찾아내는 문제입니다. - 해당 문자를 제외하고, replace를 통하는 방법이 있고, 아니면 문자열에서 문자를 하나씩 검토를 하면서 우리가 찾고자하는 문자가 있다면 result String에 덧붙혀나가는 방식이 있을 수 있습니..
문제 - https://www.codewars.com/kata/remove-first-and-last-character/ 문제풀이 - 첫문자와 마지막 문제를 제거하는 문제입니다. - substring을 이용하여 "두번째, 마지막 전" 까지를 설정하여 문자를 가져오면 됩니다. public class RemoveChars { public static String remove(String str) { // your code here return str.substring(1, str.length()-1); } }
문제 - https://www.codewars.com/kata/581c6b075cfa83852700021f Codewars: Train your coding skills Codewars is where developers achieve code mastery through challenge. Train on kata in the dojo and reach your highest potential. www.codewars.com 문제풀이 - 주어진 node를 순회하면서, 찾고자하는 value의 위치를 찾는 문제입니다. - while을 통해서 head가 null 인지를 판별하고, null 이 아니라면 순회를 시작하게 됩니다. - 해당 index의 data 와 같다면, 해당 index 값을 전달 해주고 - 그..
문제 - https://www.codewars.com/kata/52e88b39ffb6ac53a400022e Codewars: Train your coding skills Codewars is where developers achieve code mastery through challenge. Train on kata in the dojo and reach your highest potential. www.codewars.com 문제풀이 - long 으로 입력받은 숫자를 ip format으로 변경하는 문제입니다. - 2진수 8자리.2진수 8자리.2진수 8자리.2진수 8자리. - IPv4는 위와 같은 Format형식을 가집니다. 그렇기에 long type ip 를 2진수로 분리를 하고, 각 8자리마다 끊어서..
문제 - https://www.codewars.com/kata/errors-histogram/ Codewars: Train your coding skills Codewars is where developers achieve code mastery through challenge. Train on kata in the dojo and reach your highest potential. www.codewars.com 문제 풀이 - 주어진 String에서 예외 문자의 개수를 count하는 문제입니다. - given a string will output the errors as a string representing a histogram of the encountered errors. - 그렇기에 문자를 순회..
문제 - https://www.codewars.com/kata/56ed20a2c4e5d69155000301 Codewars: Train your coding skills Codewars is where developers achieve code mastery through challenge. Train on kata in the dojo and reach your highest potential. www.codewars.com 문제풀이 - 문자열 strng는 "\n" 로 구분이 됩니다. - 한 단어를 반복해야하는 k와, \n 단위로 반복해야하는 v가 입력됩니다. -> strng : "abc\nbcd", k: 2, v: 2 -> abc 와 bcd 로 분리 -> k에 따라, aabbcc (각 문자를 k번 반..
문제 - https://www.codewars.com/kata/57eae20f5500ad98e50002c5 불러오는 중입니다... 문제풀이 - 주어진 문자열에서 공백을 지우는 문제입니다. - 문자열에서 문자를 하나씩 가져와서, '공백'이 아니라면, 새로운 문자열 변수에다가 덧붙혀가면 됩니다. - 쉽게는, Java에서 제공되는 replcae 함수를 사용하면 됩니다. - https://docs.oracle.com/javase/9/docs/api/java/lang/String.html#replace-char-char- - String replace(char oldChar, char newChar) : Returns a string resulting from replacing all occurences of o..