"프로그래머스 120883 로그인 성공?"의 두 판 사이의 차이

(새 문서: ==개요== {{프로그래머스|레벨=0|페이지=8}} ==C++== <syntaxhighlight lang='cpp'> #include <string> #include <vector> using namespace std; string solution(vector<string>...)
 
 
1번째 줄: 1번째 줄:
==개요==
==개요==
{{프로그래머스|레벨=0|페이지=8}}
{{프로그래머스|레벨=0|페이지=8|분류=코딩테스트 입문}}
[[분류: 프로그래머스 입문 캘린더]]
* [[프로그래머스 입문 캘린더]]


==C++==
==C++==

2023년 11월 27일 (월) 19:41 기준 최신판

1 개요[ | ]

프로그래머스 120883 로그인 성공?

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

string solution(vector<string> id_pw, vector<vector<string>> db) {
    string id = id_pw[0];
    string pw = id_pw[1];
    for(auto& row: db) {
        if(row[0] != id) {
            continue;
        }
        if(row[1] == pw) {
            return "login";
        } else {
            return "wrong pw";
        }
    }
    return "fail";
}