From 8f7f6185db0ed11af2ceb447ec0f1c84664dc359 Mon Sep 17 00:00:00 2001 From: pwq <57176977+pvvq@users.noreply.github.com> Date: Tue, 25 Oct 2022 01:10:21 +0800 Subject: [PATCH] 0349 fix code block language change language from `c++` to `CPP`, since `c++` doesn't get rendered as expected (here)[https://programmercarl.com/0349.%E4%B8%A4%E4%B8%AA%E6%95%B0%E7%BB%84%E7%9A%84%E4%BA%A4%E9%9B%86.html#%E5%90%8E%E8%AE%B0]. --- problems/0349.两个数组的交集.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/problems/0349.两个数组的交集.md b/problems/0349.两个数组的交集.md index a6e07424..bd83fae9 100644 --- a/problems/0349.两个数组的交集.md +++ b/problems/0349.两个数组的交集.md @@ -91,7 +91,7 @@ public: 对应C++代码如下: -```c++ +```CPP class Solution { public: vector intersection(vector& nums1, vector& nums2) {