mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
53 lines
2.0 KiB
HTML
53 lines
2.0 KiB
HTML
<p>给定一个由表示变量之间关系的字符串方程组成的数组,每个字符串方程 <code>equations[i]</code> 的长度为 <code>4</code>,并采用两种不同的形式之一:<code>"a==b"</code> 或 <code>"a!=b"</code>。在这里,a 和 b 是小写字母(不一定不同),表示单字母变量名。</p>
|
||
|
||
<p>只有当可以将整数分配给变量名,以便满足所有给定的方程时才返回 <code>true</code>,否则返回 <code>false</code>。 </p>
|
||
|
||
<p> </p>
|
||
|
||
<ol>
|
||
</ol>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>["a==b","b!=a"]
|
||
<strong>输出:</strong>false
|
||
<strong>解释:</strong>如果我们指定,a = 1 且 b = 1,那么可以满足第一个方程,但无法满足第二个方程。没有办法分配变量同时满足这两个方程。
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>["b==a","a==b"]
|
||
<strong>输出:</strong>true
|
||
<strong>解释:</strong>我们可以指定 a = 1 且 b = 1 以满足满足这两个方程。
|
||
</pre>
|
||
|
||
<p><strong>示例 3:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>["a==b","b==c","a==c"]
|
||
<strong>输出:</strong>true
|
||
</pre>
|
||
|
||
<p><strong>示例 4:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>["a==b","b!=c","c==a"]
|
||
<strong>输出:</strong>false
|
||
</pre>
|
||
|
||
<p><strong>示例 5:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>["c==c","b==d","x!=z"]
|
||
<strong>输出:</strong>true
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ol>
|
||
<li><code>1 <= equations.length <= 500</code></li>
|
||
<li><code>equations[i].length == 4</code></li>
|
||
<li><code>equations[i][0]</code> 和 <code>equations[i][3]</code> 是小写字母</li>
|
||
<li><code>equations[i][1]</code> 要么是 <code>'='</code>,要么是 <code>'!'</code></li>
|
||
<li><code>equations[i][2]</code> 是 <code>'='</code></li>
|
||
</ol>
|