본문 바로가기
반응형

Coding Test/Go11

[프로그래머스] 내적 Go Code 2022.07.29 - [Coding Test/Python] - [프로그래머스] 내적 Python Code 2022.07.29 - [Coding Test/C++] - [프로그래머스] 내적 C++ Code 이번엔 Go로 풀어보겠다. 문제 Code func solution(a []int, b []int) (answer int) { for i := range a { answer += a[i] * b[i] } return } 2022. 7. 29.
[프로그래머스] 음양 더하기 Go code 2022.07.29 - [Coding Test/Python] - [프로그래머스] 음양 더하기 Python3 code [프로그래머스] 음양 더하기 Python3 code 스킬 체크만 하고 프로그래머스를 많이 이용하지 않아서 그런지 추천 문제에 레벨 1이 많이 떠서 얼른 해치우려고 한다. 우선 python3로 풀이해봤다. 문제 Code 너무 쉽기 때문에 바로 코드를 올리 gm-note.tistory.com 2022.07.29 - [Coding Test/Python] - [프로그래머스] 음양 더하기 C++ code [프로그래머스] 음양 더하기 C++ code 2022.07.29 - [Coding Test/Python] - [프로그래머스] 음양 더하기 Python3 code [프로그래머스] 음양 더하기 Pyth.. 2022. 7. 29.
[프로그래머스] 신고 결과 받기 Go Code 2022.07.16 - [Coding Test/Python] - [프로그래머스] 신고 결과 받기 Python code [프로그래머스] 신고 결과 받기 Python code 문제 설명 예시 Input, Output 설명 code 구현은 아래와 같이 했다. answer의 배열은 id_list의 길이와 같기 때문에 0으로 모두 초기화해준다. 그 후 set으로 report의 중복을 제거한다. for문으로 report를.. gm-note.tistory.com 이번엔 프로그래머스 신고 결과 받기를 Go Code로 풀어보았다. 역시 풀이 방법은 같다. Problem Code import ( "strings" ) func makeuniq(s []string) []string { m := make(map[string]s.. 2022. 7. 18.
반응형