mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-17 14:04:33 +00:00
27 - fix description
Signed-off-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com>
This commit is contained in:
@@ -1,10 +1,9 @@
|
||||
/**
|
||||
* \file
|
||||
* \brief [3. Longest
|
||||
* substring](https://leetcode.com/problems/longest-substring-without-repeating-characters/)
|
||||
* brute force solution
|
||||
* \details Given a string `s`, find the length of the longest substring without
|
||||
* repeating characters.
|
||||
* \brief [27. Remove
|
||||
* element](https://leetcode.com/problems/remove-element/) solution
|
||||
* \details Given an array nums and a value val, remove all instances of that
|
||||
* value in-place and return the new length.
|
||||
*/
|
||||
|
||||
#include <assert.h>
|
||||
|
||||
Reference in New Issue
Block a user