# endswith
총 10개의 포스트

[2255] Count Prefixes of a Given String | Biweekly Contest 77 Easy
You are given a string array words and a string s, where wordsi and s comprise only of lowercase English letters.Return the number of strings in words
2022년 5월 5일
·
0개의 댓글·
0
Python String Methods - 파이썬 문자열 처리 메서드
Python has a set of built-in methods that you can use on strings.
2021년 11월 17일
·
0개의 댓글·
0
[JavaScript #15] Basic of JavaScript - ES6 문법
ES6에 추가된 함수로 기존 function() 함수를 변형했다.중괄호와 return문이 생략될 경우, 화살표 오른쪽에는 리턴될 "값"만 쓰여야 한다. 특정 string을 찾기 위한 indexOf 메서드 외 기능startsWith endsWith includesrepe
2021년 9월 27일
·
0개의 댓글·
0
ES6 & String,Array Method
ES6 기능 소개 / String 메서드 / includes() / repeat() /💡Array.from() / Array.of()
2021년 3월 26일
·
0개의 댓글·
0
[leetcode] Short Encoding of Words
Time: O(N^2\*M), N is the length of the words, M is the length of wordsiSpace: O(1)
2021년 3월 6일
·
0개의 댓글·
0
[ PROJECT ] 당근마켓 클론코딩 - #05 dJango에서 MySQL 'LIKE' 사용하기
특정 문자열, 단어, 숫자를 포함하는 데이터를 추출하고싶을 때 사용하는 쿼리, LIKE!
2021년 1월 3일
·
0개의 댓글·
0
ECMAScript 6(ES2015) Features
ECMAScript 6의 새로운 기능 정리 Arrow Function(화살표 함수) 전통적인 함수작성 방법 대신 축약해서 표현할 수 있습니다. 콜백 함수로 활용합니다.. 화살표 함수에서의 this는 감싸고 있는 코드의 lexical this와 같습니다.
2019년 12월 24일
·
0개의 댓글·
0