码迷,mamicode.com
首页 >  
搜索关键字:there are two rows o    ( 14173个结果
【leetcode】1348. Tweet Counts Per Frequency
题目如下: Implement the class TweetCounts that supports two methods: 1. recordTweet(string tweetName, int time) Stores the tweetName at the recorded time  ...
分类:其他好文   时间:2020-02-09 18:10:45    阅读次数:50
LC 127. Word Ladder (two end bfs)
Link class Solution { public: int ladderLength(string beginWord, string endWord, vector<string>& wordList) { unordered_set<string> words; for(auto &s: ...
分类:其他好文   时间:2020-02-09 11:19:33    阅读次数:67
Flip Game / POJ 1753
Flip game is played on a rectangular 4x4 field with two-sided pieces placed on each of its 16 squares. One side of each piece is white and the other o ...
分类:其他好文   时间:2020-02-08 22:02:58    阅读次数:86
【leetcode】1337. The K Weakest Rows in a Matrix
题目如下: Given a m * n matrix mat of ones (representing soldiers) and zeros (representing civilians), return the indexes of the k weakest rows in the mat ...
分类:其他好文   时间:2020-02-08 15:55:21    阅读次数:68
HGAME2020 Week3 Writeup
签到成功 只求week4不要交白卷 Crypto Exchange 题目: Our admin hijacked a secret channel and it looks like there are two teams doing some unspeakable transactions. n ...
分类:其他好文   时间:2020-02-08 09:57:02    阅读次数:107
DataGridView复制到Excel格式
Clipboard.Clear() ' 清除剪贴板 If DataGridView2.Rows.Count > 0 Then Dim a As New List(Of String) For i As Integer = 0 To DataGridView2.Rows.Count - 1 Dim b ...
分类:Windows程序   时间:2020-02-08 00:22:10    阅读次数:82
leetcode21 Merge Two Sorted Lists
1 """ 2 Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. ...
分类:其他好文   时间:2020-02-07 18:47:24    阅读次数:67
leetcode24 Swap Nodes in Pairs
1 """ 2 Given a linked list, swap every two adjacent nodes and return its head. 3 You may not modify the values in the list's nodes, only nodes itself ...
分类:其他好文   时间:2020-02-07 18:27:44    阅读次数:58
1047. Remove All Adjacent Duplicates In String
Given a string S of lowercase letters, a duplicate removal consists of choosing two adjacent and equal letters, and removing them. We repeatedly make ...
分类:其他好文   时间:2020-02-07 10:42:50    阅读次数:74
leetcode349 350 Intersection of Two Arrays & II
1 """ 2 Intersection of Two Arrays 3 Given two arrays, write a function to compute their intersection. 4 Example 1: 5 Input: nums1 = [1,2,2,1], nums2 ...
分类:其他好文   时间:2020-02-06 23:00:09    阅读次数:74
14173条   上一页 1 ... 63 64 65 66 67 ... 1418 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!