You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
varstudents=["Ben","Ivy","Jordell","Maxime"]iflet i = students.firstIndex(of:"Maxime"){students[i]="Max"}print(students)
// Prints "["Ben", "Ivy", "Jordell", "Max"]"
✅ enumerated()
쌍(n, x)의 시퀀스를 반환한다.
여기서 n은 0에서 시작하는 연속적인 정수**(index)를 나타내고 x는 시퀀스의 요소(element)**를 나타냅니다.
for(n, c)in"Swift".enumerated(){print("\(n): '\(c)'")}
// Prints "0: 'S'"
// Prints "1: 'w'"
// Prints "2: 'i'"
// Prints "3: 'f'"
// Prints "4: 't'"
The text was updated successfully, but these errors were encountered:
📌 TODO
서울에서 김서방 찾기
💬 Idea
💬 풀이
소요시간
: 4분 40초💬 더 나은 방법?
배열을 돌지 않고도 배열의 firstIndex 메서드를 활용하여 Kim의 위치를 찾을 수 있다.
💬 문법 정리
✅ firstIndex(of:)
컬렉션에서 지정된 값이 나타나는 첫 번째 인덱스를 반환한다 !!!
✅ enumerated()
쌍(n, x)의 시퀀스를 반환한다.
여기서 n은 0에서 시작하는 연속적인 정수**(index)를 나타내고 x는 시퀀스의 요소(element)**를 나타냅니다.
The text was updated successfully, but these errors were encountered: